home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
-
- static char RCSId[]="$Id: NoDataPane.m,v 1.3 1993/05/04 16:22:16 davis Exp $";
-
-
- #import <appkit/Application.h>
- #import "NoDataPane.h"
-
-
- @implementation NoDataPane
-
-
- - init
- {
- [super init];
-
- [NXApp loadNibSection: "NoDataPane.nib"
- owner: self
- withNames: NO
- fromZone: [self zone]];
-
- return self;
- }
-
-
-
- // Shuts up the compiler about unused RCSId
- - (const char *) rcsid
- {
- return RCSId;
- }
-
- @end
-